From 71ac759b144fc0344f08f6c1c335ee53c5516ce6 Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Fri, 24 Dec 2010 08:25:54 +0000 Subject: [PATCH] credit2: Quieten some debug messages Signed-off-by: George Dunlap --- xen/common/sched_credit2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/xen/common/sched_credit2.c b/xen/common/sched_credit2.c index 1e8cc392a3..822bd93818 100644 --- a/xen/common/sched_credit2.c +++ b/xen/common/sched_credit2.c @@ -538,7 +538,7 @@ void update_max_weight(struct csched_runqueue_data *rqd, int new_weight, int old if ( new_weight > rqd->max_weight ) { rqd->max_weight = new_weight; - printk("%s: Runqueue id %d max weight %d\n", __func__, rqd->id, rqd->max_weight); + d2printk("%s: Runqueue id %d max weight %d\n", __func__, rqd->id, rqd->max_weight); } else if ( old_weight == rqd->max_weight ) { @@ -554,7 +554,7 @@ void update_max_weight(struct csched_runqueue_data *rqd, int new_weight, int old } rqd->max_weight = max_weight; - printk("%s: Runqueue %d max weight %d\n", __func__, rqd->id, rqd->max_weight); + d2printk("%s: Runqueue %d max weight %d\n", __func__, rqd->id, rqd->max_weight); } } -- 2.30.2